home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 33 / Amiga Format AFCD33 (Issue 117, Dec 1998).iso / -seriously_amiga- / programming / e / kyz_obj / kyz_obj.readme < prev    next >
Text File  |  1998-09-14  |  2KB  |  45 lines

  1. Short:    Set of useful E objects
  2. Author:   Kyzer/CSG
  3. Uploader: Kyzer/CSG <kyzer@4u.net>
  4. Type:     dev/e
  5.  
  6. This is a collection of E objects I have written, for use in Amiga E
  7. programs. Most come with full autodoc-based documentation, and adhere
  8. to the important OO concepts.
  9.  
  10. bitfield.m
  11. - a full-featured representation of a bitfield. It provides individual bit
  12. operations  and  testing,  bitfield range operations (with AND-combined and
  13. OR-combined  test  results),  combination of bitfields with AND, OR, XOR or
  14. just copy, and optional exception-raise on range errors.
  15.  
  16. catalog.m
  17. - a very simple and powerful way to use locale catalogs in programs, using
  18.   the object form to make it much easier to use more than one catalog.
  19.   * Comes with full example of using module and localisation, with sources
  20.     generated from an 'E.sd' FlexCat source descriptor.
  21.  
  22. datestring.m
  23. - a simple object form of DateToStr()
  24.  
  25. patch.m
  26. - a very powerful way to install E functions as patches to system functions,
  27.   once again using an object form to hide the messy details.
  28.  
  29. rexxstate.m
  30. - controls the internal workings of ARexx like the commands in SYS:RexxC
  31.  
  32. simplebitfield.m
  33. - a highly cut down version of bitfield.m
  34.  
  35.  
  36. CHANGES SINCE LAST RELEASE
  37. - changed the docs of bitfield.m to remove unwanted automatic links.
  38. - Fixed error in patch.m - was writing to the 2 bytes following the patchcode.
  39. - Wrote first draft of the documentation for patch.m - you can probably see
  40.   why it was put off for such a long time!
  41. - rexxstate.m 'rewritten' to remove ugly get/set interface. New docs.
  42. - datestring.m made simpler, now doesn't include datetime struct in self.
  43. - added note to catalog.m/def() about blocks
  44. - fixed makefiles
  45.